home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / var / lib / dpkg / info / sensible-utils.postinst < prev    next >
Encoding:
Text File  |  2010-04-06  |  278 b   |  18 lines

  1. #! /bin/sh -e
  2.  
  3. case "$1" in
  4.     (configure)
  5.     if which update-mime >/dev/null;
  6.     then
  7.         update-mime
  8.     fi
  9.     ;;
  10.     (abort-upgrade|abort-remove|abort-deconfigure)
  11.  
  12.     ;;
  13.     (*)
  14.         echo "postinst called with unknown argument \`$1'" >&2
  15.         exit 1
  16.     ;;
  17. esac
  18.